home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / stringcompare.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  213 b   |  15 lines

  1. #include "bbs.h"
  2.  
  3. int StringCompare(char *s, char *t)
  4. {
  5.  return(jive(s,t));
  6. }
  7. int NameCompare(char *s, char *t)
  8. {
  9.  if(GET_BIT(ACS_WILDCARDS))
  10.  return(jive(s,t));
  11.   else if(!stricmp(s,t)) return(0);
  12.  return(1);
  13. }
  14.  
  15.